home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / ForCLI / 0Utils13.lha / 0Utils / ReadLn.doc < prev    next >
Text File  |  1995-02-21  |  893b  |  47 lines

  1.  
  2.  
  3.     NAME
  4.     ReadLn
  5.  
  6.     SYNOPSIS
  7.     ReadLn - Read Lines from a filehandle - Requires v37
  8.  
  9.     INPUTS
  10.     "FILEHANDLE/N/A,LINES/N/K"
  11.  
  12.     FUNCTION
  13.     ReadLn reads linesfrom a filehandle previosly opened
  14.     with the 'Open' command. its purpose is to split the
  15.     contents of a certain file in order to be able to
  16.     handle it with different other commands, without a need
  17.     of using another scripting language (like e.g. ARexx).
  18.     ReadLn does no checks on the given filehandle, so
  19.     it should be used carefully.
  20.  
  21.     RESULT
  22.     the read lines
  23.  
  24.     NOTES
  25.     ! ReadLn is highly dangerous! Do not Use it, !
  26.     ! if U do not exactly know what U are doing! !
  27.  
  28.     CLI - only
  29.  
  30.     should compile with SAS-C
  31.  
  32.     BUGS
  33.  
  34.     EXAMPLES
  35.     > set fh `Open Sys:S/Shell-startup`
  36.     > Readln $fh
  37.       alias xcopy "copy clone "
  38.     > Close $fh
  39.     > Unset fh
  40.  
  41.     AUTHOR
  42.     Bernd Noll, Brunnenstrasse 55, D-67661 Kaiserslautern
  43.     noll@student.uni-kl.de
  44.  
  45.  
  46.  
  47.